home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ASME's Mechanical Engine…ing Toolkit 1997 December
/
ASME's Mechanical Engineering Toolkit 1997 December.iso
/
c_lang
/
pccstdio.lzh
/
SRC.LZH
/
INB.A
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1985-01-17
|
282 b
|
19 lines
; _inb.a - input byte from port.
; (C) Copyright 1985 Gregory R. Mansfield - All Rights Reserved.
; G. R. Mansfield. 85/01/16.
; Ver 1.0-5116.
cseg
public _inb_
; BYTE _inb(port)
; int port;
_inb_: mov bx,sp
mov dx,[bx+2] ; port
in al,dx
xor ah,ah
ret